home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d17 / lptx601.arc / LPT.BAT next >
DOS Batch File  |  1987-04-08  |  199b  |  11 lines

  1. rem Assemble and Link LPTx
  2. rem Copyright 1987 Mark C. DiVecchio
  3. masm lptx;
  4. if errorlevel 1 goto exit
  5. link lptx;
  6. exe2bin lptx lptx.com
  7. erase lptx.exe
  8. erase lptx.obj
  9. copy lptx.com \/v
  10. :exit
  11.